home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / ftell.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  2KB  |  79 lines

  1. /* 
  2.  * ftell.c --
  3.  *
  4.  *    Source code for the "ftell" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: ftell.c,v 1.5 88/07/29 18:56:38 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21. #include "fileInt.h"
  22. #include <sys/file.h>
  23.  
  24. extern long ftell(), lseek();
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * ftell --
  30.  *
  31.  *    This procedure returns the current access position in a file
  32.  *    stream, as a byte count from the beginning of the file.
  33.  *
  34.  * Results:
  35.  *    The return value is the location (measured in bytes from the
  36.  *    beginning of the file associated with stream) where the next
  37.  *    byte will be read or written.  If the stream doesn't
  38.  *    correspond to a file, or if there is an error during the operation,
  39.  *    then -1 is returned.
  40.  *
  41.  * Side effects:
  42.  *    None.
  43.  *
  44.  *----------------------------------------------------------------------
  45.  */
  46.  
  47. long
  48. ftell(stream)
  49.     register FILE *stream;
  50. {
  51.     int count;
  52.  
  53.     if ((stream->readProc != (void (*)()) StdioFileReadProc) ||
  54.     ((stream->flags & (STDIO_READ|STDIO_WRITE)) == 0)) {
  55.     return -1;
  56.     }
  57.  
  58.     count = lseek((int) stream->clientData, 0L, L_INCR);
  59.     if (count < 0) {
  60.     return -1;
  61.     }
  62.  
  63.     /*
  64.      * The code is different for reading and writing.  For writing,
  65.      * we add the system's idea of current position to the number
  66.      * of bytes waiting in the buffer.  For reading, subtract the
  67.      * number of bytes still available in the buffer from the system's
  68.      * idea of the current position.
  69.      */
  70.  
  71.     if (stream->writeCount > 0) {
  72.     count += stream->lastAccess + 1 - stream->buffer;
  73.     } else if (stream->readCount > 0) {
  74.     count -= stream->readCount;
  75.     }
  76.  
  77.     return(count);
  78. }
  79.